if RUBY_VERSION >= '2.6'
  class BigDecimal
    def self.new(*args)
      BigDecimal(*args)
    end
  end
end